From bd9749cff0b89b1dbf5d25230d15df94176ffef3 Mon Sep 17 00:00:00 2001 From: Tinywan <756684177@qq.com> Date: Mon, 19 Jun 2017 14:08:48 +0800 Subject: [PATCH 1/2] del redis demo --- .../controller/WebSocketRedisController.lua | 6 +- .../demo/company_branch/cookie_test.lua | 33 + .../demo/company_branch/header_filter.lua | 35 + conf/domains/nginx_demo.conf | 11 +- conf/domains/nginx_live.conf | 4 +- logs/demo_error.log | 0 logs/index_error.log | 0 logs/live_error.log | 872 ++++++++++++++++++ logs/product_access.log | 0 logs/product_error.log | 0 10 files changed, 955 insertions(+), 6 deletions(-) create mode 100644 application/demo/company_branch/cookie_test.lua create mode 100644 application/demo/company_branch/header_filter.lua create mode 100644 logs/demo_error.log create mode 100644 logs/index_error.log create mode 100644 logs/live_error.log create mode 100644 logs/product_access.log create mode 100644 logs/product_error.log diff --git a/application/controller/WebSocketRedisController.lua b/application/controller/WebSocketRedisController.lua index 007436c..559df20 100644 --- a/application/controller/WebSocketRedisController.lua +++ b/application/controller/WebSocketRedisController.lua @@ -32,6 +32,7 @@ if not wb then return ngx.exit(444) end + local push = function() -- --create redis local red = redis:new() @@ -45,7 +46,7 @@ local push = function() ok, err = red:auth(redis_auth) if not ok then - log(ERR, "failed to auth: ", err) + ngx.log(ngx.ERR, "failed to auth: ", err) wb:send_close() end --sub @@ -61,7 +62,7 @@ local push = function() local res, err = red:read_reply() if res then local item = res[3] --- local bytes, err = wb:send_text(tostring(msg_id).." "..item) + --local bytes, err = wb:send_text(tostring(msg_id).." "..item) local bytes, err = wb:send_text('[ '..tostring(msg_id).." ] "..ngx.localtime().." "..item) if not bytes then -- better error handling @@ -73,6 +74,7 @@ local push = function() end end + local co = ngx.thread.spawn(push) -- create thread 1 --main loop diff --git a/application/demo/company_branch/cookie_test.lua b/application/demo/company_branch/cookie_test.lua new file mode 100644 index 0000000..2817f9e --- /dev/null +++ b/application/demo/company_branch/cookie_test.lua @@ -0,0 +1,33 @@ +-- +-- Created by IntelliJ IDEA. +-- User: Administrator +-- Date: 2017/6/19 +-- Time: 10:05 +-- To change this template use File | Settings | File Templates. +-- +local redis = require "resty.redis" +local log = ngx.log +local redis_host = "121.41.88.209" +local redis_port = "63789" +local redis_auth = "tinywanredisamaistream" +local redis_timeout = 1000 + +local red = redis:new() +red:set_timeout(5000) -- 1 sec +local ok, err = red:connect(redis_host, redis_port) +if not ok then + ngx.log(ngx.ERR, "failed to connect redis: ", err) + wb:send_close() + return +end + +ok, err = red:auth(redis_auth) +if not ok then + log(ERR, "failed to auth: ", err) +end + +resp, err = red:set("LATEST_COMMENT::12345", "LATEST_COMMENT VALUES") +if not resp then + ngx.log(ngx.ERR, "set redis live error : ", err) +end + diff --git a/application/demo/company_branch/header_filter.lua b/application/demo/company_branch/header_filter.lua new file mode 100644 index 0000000..dd48438 --- /dev/null +++ b/application/demo/company_branch/header_filter.lua @@ -0,0 +1,35 @@ +-- +-- Created by IntelliJ IDEA. +-- User: Administrator +-- Date: 2017/6/19 +-- Time: 10:14 +-- To change this template use File | Settings | File Templates. +-- +local match = string.match + +local function get_cookies() + -- local cookies = ngx.header["Set-Cookie"] or {} + local cookies = ngx.header.set_cookie or {} + if type(cookies) == "string" then + cookies = {cookies} + end + return cookies +end + +local function remove_cookie(cookie_name) + local cookies = get_cookies() + + ngx.log(ngx.ERR, "source cookies ", table.concat(cookies, " ")) + for key, value in ipairs(cookies) do + local name = match(value, "(.-)=") + ngx.log(ngx.ERR, key.."<=>", value) + if name == cookie_name then + table.remove(cookies, key) + end + end + + ngx.header['Set-Cookie'] = cookies or {} + ngx.log(ngx.ERR, "new cookies ", table.concat(cookies, " ")) +end + +remove_cookie("Foo") \ No newline at end of file diff --git a/conf/domains/nginx_demo.conf b/conf/domains/nginx_demo.conf index 42b3880..0504c59 100644 --- a/conf/domains/nginx_demo.conf +++ b/conf/domains/nginx_demo.conf @@ -229,8 +229,15 @@ server { } #-------------------------------------------------cookie 的使用 - location /cookie { - + location ~ /header_add { + content_by_lua_block { + ngx.print(ngx.var.http_cookie) + is_internal = ngx.req.is_internal() + ngx.print(is_internal) + local request_time = ngx.now() - ngx.req.start_time() + ngx.print(request_time) + } + #header_filter_by_lua_file "${project_path}lua_project_v0.01/application/demo/company_branch/header_filter.lua"; } } diff --git a/conf/domains/nginx_live.conf b/conf/domains/nginx_live.conf index 7dc9dbb..8c268ed 100644 --- a/conf/domains/nginx_live.conf +++ b/conf/domains/nginx_live.conf @@ -92,9 +92,9 @@ server { } # 聊天室配置 - location /live_chat_room { + location /live_redis { lua_code_cache off; - content_by_lua_file "${project_path}lua_project_v0.01/application/controller/ChatRoomController.lua"; + content_by_lua_file "${project_path}lua_project_v0.01/application/controller/test_redis.lua"; } diff --git a/logs/demo_error.log b/logs/demo_error.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/index_error.log b/logs/index_error.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/live_error.log b/logs/live_error.log new file mode 100644 index 0000000..c13096b --- /dev/null +++ b/logs/live_error.log @@ -0,0 +1,872 @@ +2017/06/19 13:49:54 [error] 12962#0: *52 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.73, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:49:55 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:17: resty.websocket.server :: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:00 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:00 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:00 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:00 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:46: latest_comment(): lPush redis live error : ERR only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:50: latest_comment(): lPush redis live error : ERR only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:50:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:51:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:52:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:53:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:54:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:55:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:56:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:57:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:58:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:56 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 13:59:56 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:01 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:01 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:06 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:06 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:11 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:11 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:16 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:16 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:21 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:21 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:26 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:26 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:31 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:31 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:36 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:36 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:41 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:41 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:46 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:46 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:51 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:51 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:00:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:01:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:02:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:03:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:04:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:05:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:06:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:07:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" diff --git a/logs/product_access.log b/logs/product_access.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/product_error.log b/logs/product_error.log new file mode 100644 index 0000000..e69de29 From 4f9ca9eb1614bc12ba52c31c0467b36635f7284e Mon Sep 17 00:00:00 2001 From: Tinywan <756684177@qq.com> Date: Thu, 29 Jun 2017 16:45:37 +0800 Subject: [PATCH 2/2] un --- logs/live_error.log | 98535 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98535 insertions(+) diff --git a/logs/live_error.log b/logs/live_error.log index c13096b..96e7192 100644 --- a/logs/live_error.log +++ b/logs/live_error.log @@ -870,3 +870,98538 @@ 2017/06/19 14:08:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" 2017/06/19 14:08:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" 2017/06/19 14:08:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:08:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:09:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:52 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:57 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:10:57 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:02 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:02 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:07 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:07 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:12 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:12 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:17 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:17 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:22 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:22 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:27 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:27 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:32 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:32 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:37 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:37 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:42 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:42 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:47 [error] 12962#0: *56 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:117: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:47 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:127: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:49 [error] 12962#0: *59 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.73, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:49 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:17: resty.websocket.server :: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:46: latest_comment(): lPush redis live error : ERR only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:50: latest_comment(): lPush redis live error : ERR only (P)SUBSCRIBE / (P)UNSUBSCRIBE / QUIT allowed in this context, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:52 [error] 12962#0: *56 [lua] WebSocketRedisController.lua:89: failed to send text: failed to send frame: broken pipe, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:57 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:11:57 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:02 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:02 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:07 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:07 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:12 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:12 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:17 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:17 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:22 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:22 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:27 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:27 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:32 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:32 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:37 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:37 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:42 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:42 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:47 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:47 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:52 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:52 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:57 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:12:57 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:02 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:02 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:07 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:07 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:12 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:12 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:17 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:17 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:22 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:22 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:27 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:27 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:32 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:32 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:37 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:37 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:42 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:42 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:47 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:47 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:52 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:52 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:57 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:13:57 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:02 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:02 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:07 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:07 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:12 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:12 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:17 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:17 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:22 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:22 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:27 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:27 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:32 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:32 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:37 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:37 [error] 12962#0: *66 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:14:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:15:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:15:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:15:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:15:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:15:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:15:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:15:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:15:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:15:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:15:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:15:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:15:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:16:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:16:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:16:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:16:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:16:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:16:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:16:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:16:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:16:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:16:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:16:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:16:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:17:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:17:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:17:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:17:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:17:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:17:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:17:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:17:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:17:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:17:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:17:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:17:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:18:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:18:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:18:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:18:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:18:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:18:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:18:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:18:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:18:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:18:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:18:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:18:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:19:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:19:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:19:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:19:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:19:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:19:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:19:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:19:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:19:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:19:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:19:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:19:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:20:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:20:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:20:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:20:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:20:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:20:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:20:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:20:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:20:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:20:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:20:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:20:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:21:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:21:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:21:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:21:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:21:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:21:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:21:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:21:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:21:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:21:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:21:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:21:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:22:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:22:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:22:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:22:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:22:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:22:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:22:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:22:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:22:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:22:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:22:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:22:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:23:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:23:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:23:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:23:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:23:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:23:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:23:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:23:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:23:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:23:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:23:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:23:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:24:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:24:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:24:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:24:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:24:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:24:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:24:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:24:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:24:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:24:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:24:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:24:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:25:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:25:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:25:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:25:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:25:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:25:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:25:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:25:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:25:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:25:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:25:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:25:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:26:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:26:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:26:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:26:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:26:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:26:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:26:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:26:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:26:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:26:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:26:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:26:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:48 [error] 12962#0: *69 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.73, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:49 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:17: resty.websocket.server :: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:54 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:54 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:54 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:54 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:59 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:59 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:59 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:27:59 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:04 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:04 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:04 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:04 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:09 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:09 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:09 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:09 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:14 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:14 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:14 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:14 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:19 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:19 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:19 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:19 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:24 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:24 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:24 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:24 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:25 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:26 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:27 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *320 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *325 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *316 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *317 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *326 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *327 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *347 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *350 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *357 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *309 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *363 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *334 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *366 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *374 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *335 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *308 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:28 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *324 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *338 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *343 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *330 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *364 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *349 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *346 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *367 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *358 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *372 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *310 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *311 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *315 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *322 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *314 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *332 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *323 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *333 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *329 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *331 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *340 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *471 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *344 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *339 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *342 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *461 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *352 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *466 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *460 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *348 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *355 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *465 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *470 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *353 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *360 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *362 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *473 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *369 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *368 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *370 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *373 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *377 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *376 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:29 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *458 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *464 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *469 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *475 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *462 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *456 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *467 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *472 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:30 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *273 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *269 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *275 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *271 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *279 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *277 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *281 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:31 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *283 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *286 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *288 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *478 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *487 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *290 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *479 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *294 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *482 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *292 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *496 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *485 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *298 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *483 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *296 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *488 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *486 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *300 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *490 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *500 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *497 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *303 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *493 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *491 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *305 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *307 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *494 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *505 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *499 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *319 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *501 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *356 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *498 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *503 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *518 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *520 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *524 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *457 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *516 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *468 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *513 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *514 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *528 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *519 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *533 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *522 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *526 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *536 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *527 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *523 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:32 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *531 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *530 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *535 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *539 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *538 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *540 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *541 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:33 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *481 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *492 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *489 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *544 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *504 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *509 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *502 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *512 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *506 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *549 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *515 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *517 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *508 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *270 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *521 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *525 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *546 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *272 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *529 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *552 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *534 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *532 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *274 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *537 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:34 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *276 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *280 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *556 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *282 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *278 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *547 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *559 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *551 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *285 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *548 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *563 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *567 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *287 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *573 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *289 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *587 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *554 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *553 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *293 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *291 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *585 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *557 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *295 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *558 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *542 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:35 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *594 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *299 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *297 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *561 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *543 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *302 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *545 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *304 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *566 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *306 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *569 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *570 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *318 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *359 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *577 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *575 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *560 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *578 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *586 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *375 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *589 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *440 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *441 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *442 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *443 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *444 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *611 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *452 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *453 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *454 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *455 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *564 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *445 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *446 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *447 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *448 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *449 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *450 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *451 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *593 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *474 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *459 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *571 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *574 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *576 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *580 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *601 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *583 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:36 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *600 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *588 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *604 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *590 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *605 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *606 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *550 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *595 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *609 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *608 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *610 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *613 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *615 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *480 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *511 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *602 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *607 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *555 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *616 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *612 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *617 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *622 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *614 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:37 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *621 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *623 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *620 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *568 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *618 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *572 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *584 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *579 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *619 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *626 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *592 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *596 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *599 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *628 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:38 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *624 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *598 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *625 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *631 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *627 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *630 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *637 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *629 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *632 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *644 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *634 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *647 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *653 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *635 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *639 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *659 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *662 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *643 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *649 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *640 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *689 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *667 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *645 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *682 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *686 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *652 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:39 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *658 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *650 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *660 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *700 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *704 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *710 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *633 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *717 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *722 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *636 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *638 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *675 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *668 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *663 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *725 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *664 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *641 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *312 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *642 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *646 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *683 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *693 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *651 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *648 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *685 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *734 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *665 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *313 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *654 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *321 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *328 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *696 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *692 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:40 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *656 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *337 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *336 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *706 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *676 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *673 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *661 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *678 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *719 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *712 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *681 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *720 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *669 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *723 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *724 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *688 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *670 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *674 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *666 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *341 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *690 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *729 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:41 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *677 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *691 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *694 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *746 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *698 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *680 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *671 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *345 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *699 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *747 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *726 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *679 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *701 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *739 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *684 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *705 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *687 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *351 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *709 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *741 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *715 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *736 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *361 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *354 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *697 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *702 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *755 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *745 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *733 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *707 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *735 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *365 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *708 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *703 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *713 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *711 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *749 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *718 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *751 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *740 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *721 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *752 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *371 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:42 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *743 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *728 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *731 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *754 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *738 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *758 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *730 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *760 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *732 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *769 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *761 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *756 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *762 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:43 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *419 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *742 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *768 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *764 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *744 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *420 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *765 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *426 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *770 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *748 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *425 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *427 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *428 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *429 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *775 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *753 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *421 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *422 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *423 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *424 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *439 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *430 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *431 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *781 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *773 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *783 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *779 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *757 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *432 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *433 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *434 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *435 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *436 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *437 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *438 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *379 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *380 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *381 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *382 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *383 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *384 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *774 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *398 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *408 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *409 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *410 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *411 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *412 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *413 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *777 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *776 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:44 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *416 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *417 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *418 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *767 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *463 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *385 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *386 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *387 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *393 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *394 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *395 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *396 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *397 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *791 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *399 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *763 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *414 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *415 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *388 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *389 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *390 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *391 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *392 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *790 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *780 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *400 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *401 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *402 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *403 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *404 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *405 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *406 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *407 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *785 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *792 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *788 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *772 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *795 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *797 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *796 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *784 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *771 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *789 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *802 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *801 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *510 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *484 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *803 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *495 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:45 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *787 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *782 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *816 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *805 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *817 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *804 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *786 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *820 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *809 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *825 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *810 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *793 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *799 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:46 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *835 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *794 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *812 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *845 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *828 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *848 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *807 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *565 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *819 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *814 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *833 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *851 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *800 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *813 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *822 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *827 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *582 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *826 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *839 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *855 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *811 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *808 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *591 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *859 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *1021 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *798 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *821 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *815 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *862 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *597 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *849 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *852 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *837 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *829 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *603 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *866 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:47 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *832 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *818 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *838 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *843 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *824 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *840 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *830 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *872 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *1040 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *1021 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *844 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *854 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *847 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *834 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *836 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *864 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *657 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *850 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *841 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *874 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *846 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *842 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *860 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *857 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *878 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *672 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *881 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *853 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *863 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *870 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *856 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:48 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *858 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *1040 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *869 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *1021 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *861 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *886 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *889 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *892 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *865 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *879 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *867 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *716 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *887 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *727 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *868 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *1040 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *1021 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *893 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *883 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *873 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *750 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *880 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *876 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *890 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *888 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *884 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *759 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *875 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *885 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *882 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *900 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *891 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *901 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *903 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *898 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:49 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *1040 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *1021 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *904 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *894 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *902 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *895 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *806 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *896 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *1116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *1040 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *1021 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *823 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *908 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *906 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *897 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *899 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *907 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:50 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *905 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *914 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *909 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *913 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *927 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *910 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *1116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *1040 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *1021 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *871 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *912 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *877 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *919 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *1116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *917 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *1040 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *1021 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *923 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *911 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *918 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:51 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *922 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *931 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *915 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *924 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *940 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *916 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *925 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *932 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *1116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *1040 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *1021 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *929 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *920 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *946 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *953 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *941 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *937 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *960 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *948 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *930 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *967 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *955 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *921 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *934 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *973 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *943 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *928 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *962 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *969 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *933 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *951 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *980 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *974 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *994 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *987 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *965 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *958 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *939 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *1116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *981 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *1040 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *1021 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *935 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *986 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *945 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *936 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *999 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *938 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *971 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *950 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *949 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *942 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12967#0: *944 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *996 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *993 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *984 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *978 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *957 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:52 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *947 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *952 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *963 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *998 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *991 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *970 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *964 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *968 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *954 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *966 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *959 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *985 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *972 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *995 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *977 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *976 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *961 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *975 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1002 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *989 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *979 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *982 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *990 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *983 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *988 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *1116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *1040 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *1021 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *992 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1008 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1004 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1000 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1001 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *997 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *1204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1003 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:53 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1006 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1007 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1018 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1010 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *1204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1020 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1005 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1026 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *1116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *1040 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *1021 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1012 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1030 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1044 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1016 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1015 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1032 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1017 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1009 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1043 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1036 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1067 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *1204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1024 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1050 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1031 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1033 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *1116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *1040 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *1021 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1239 [lua] LiveRedisCacheController.lua:94: read_redis(): [read_redis] content from redis.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1029 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1045 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12968#0: *1027 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12963#0: *1239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1056 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1014 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1035 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *1204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1048 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1019 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1011 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1034 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1039 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1041 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1038 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1023 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1022 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *1116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *1040 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *1021 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1025 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:54 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1046 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1028 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1049 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1072 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1089 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1085 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1073 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1064 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1062 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1052 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *201 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1198 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1055 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1054 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1259 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1257 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1200 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1097 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1095 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1094 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1090 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1264 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1080 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1079 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1266 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1261 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *205 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *209 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *210 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *212 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1255 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1249 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1213 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1206 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1211 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1203 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1199 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *78 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *581 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *562 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1083 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1077 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1263 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1258 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1253 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1111 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1098 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1096 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1091 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1082 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12966#0: *1268 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1092 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1081 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1074 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1066 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1063 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1051 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1267 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1265 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1260 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1256 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12968#0: *1252 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1123 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1086 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1065 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1060 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1069 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1058 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1262 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1254 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1250 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1248 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1247 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12967#0: *1240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12965#0: *1108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *124 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *125 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1099 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1093 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1088 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1047 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1042 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1037 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1208 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1202 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12969#0: *1113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *126 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *127 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *128 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *129 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *130 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *131 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *132 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1084 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1070 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1076 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1059 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12963#0: *1057 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1087 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1078 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1071 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1068 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1061 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *147 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *148 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *149 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *150 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *151 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *152 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *153 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *154 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *155 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *156 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *157 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *158 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *159 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *160 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *161 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1053 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1207 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *162 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *229 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *230 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *231 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *232 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *233 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *181 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *133 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *134 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *135 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *1204 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *163 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *164 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *165 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *245 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *766 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *301 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12964#0: *1172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *166 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *167 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *168 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *169 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *170 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *86 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *87 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *88 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *89 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *90 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *91 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *92 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *93 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *94 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *95 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *96 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *97 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *98 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *99 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *112 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *113 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *114 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *115 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *234 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *235 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *236 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *237 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *238 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *239 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *240 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *241 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *242 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *243 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *244 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *214 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *215 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *216 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *217 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *218 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *219 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *220 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *221 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *222 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *223 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *224 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *225 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *226 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *227 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *228 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *1116 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *1040 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *1021 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *139 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *140 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *141 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *142 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *143 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *144 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *145 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *146 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *246 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *182 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *117 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *136 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *137 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *138 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *171 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *284 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *251 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *956 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *172 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *173 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *174 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *175 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *176 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *177 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *178 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *179 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *180 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *79 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *80 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *81 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *82 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *714 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *83 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *84 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *85 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *118 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *119 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *120 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *121 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *100 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *101 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *102 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *103 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *104 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *105 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *106 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *107 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *108 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *109 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *110 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *122 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *655 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *183 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *184 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *185 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *186 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *187 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *188 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *189 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *190 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *191 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *192 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *193 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *194 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *195 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *196 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:55 [error] 12962#0: *197 [lua] LiveRedisCacheController.lua:146: read_cache(): [get_cache] content from ngx.cache id = LIVE_TABLE:1133, client: 192.168.18.180, server: 127.0.0.1, request: "GET /live/1133 HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:56 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:56 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:59 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:28:59 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:01 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:01 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:04 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:04 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:06 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:06 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:09 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:09 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:11 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:11 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:14 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:14 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:16 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:16 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:19 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:19 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:21 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:21 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:24 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:24 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:26 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:26 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:29 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:29 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:31 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:31 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:34 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:34 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:36 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:36 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:39 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:39 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:41 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:41 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:44 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:44 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:46 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:46 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:49 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:49 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:51 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:51 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:54 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:54 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:56 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:56 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:59 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:29:59 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:01 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:01 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:04 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:04 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:06 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:06 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:09 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:09 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:11 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:11 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:14 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:14 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:16 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:16 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:19 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:19 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:21 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:21 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:24 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:24 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:26 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:26 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:29 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:29 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:31 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:31 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:34 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:34 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:36 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:36 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:39 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:39 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:41 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:41 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:44 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:44 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:46 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:46 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:49 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:49 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:51 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:51 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:54 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:54 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:56 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:56 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:59 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:30:59 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:01 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:01 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:04 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:04 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:06 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:06 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:09 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:09 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:11 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:11 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:14 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:14 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:16 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:16 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:21 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:21 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:31:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:32:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:33:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:34:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:35:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:36:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:37:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:38:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:39:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:40:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:41:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:42 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:47 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:52 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:42:57 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:02 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:07 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:12 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:17 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:22 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:27 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:32 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:97: send ping: nil, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:37 [error] 12962#0: *75 [lua] WebSocketRedisController.lua:107: client ponged, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:43:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:44:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:45:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:46:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:47:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:48:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:49:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:50:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:51:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:52:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:53:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:54:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:55:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:56:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:57:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:58:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 14:59:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:00:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:01:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:02:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:03:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:04:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:05:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:06:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:07:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:08:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:09:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:10:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:11:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:12:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:13:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:14:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:15:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:16:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:17:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:18:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:19:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:20:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:21:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:22:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:23:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:24:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:25:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:26:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:10 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:10 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:15 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:15 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:20 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:20 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:25 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:25 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:30 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:30 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:35 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:35 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:40 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:40 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:45 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:45 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:50 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:50 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:55 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:27:55 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:00 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:00 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:05 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:05 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:28:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:29:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:30:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:31:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:32:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:33:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:34:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:35:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:36:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:37:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:38:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:39:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:40:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:41:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:42:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:43:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:44:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:45:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:46:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:47:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:48:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:49:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:50:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:51:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:52:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:53:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:54:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:55:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:56:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:57:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:58:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 15:59:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:00:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:01:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:02:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:03:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:04:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:05:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:06:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:07:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:08:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:09:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:10:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:11:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:12:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:13:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:14:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:15:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:16:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:17:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:18:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:19:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:20:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:21:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:22:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:23:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:24:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:25:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:26:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:27:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:28:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:29:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:30:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:31:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:32:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:33:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:34:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:35:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:06 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:06 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:11 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:11 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:16 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:16 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:21 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:21 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:26 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:26 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:31 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:31 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:36 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:36 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:41 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:41 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:46 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:46 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:51 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:51 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:56 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:36:56 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:01 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:01 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:37:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:38:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:39:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:40:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:41:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:42:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:43:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:44:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:45:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:46:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:47:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:48:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:49:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:50:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:51:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:52:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:53:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:54:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:55:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:56:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:57:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:58:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 16:59:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:00:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:01:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:02:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:03:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:04:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:05:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:06:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:07:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:08:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:09:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:10:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:11:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:12:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:13:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:14:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:15:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:16:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:17:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:18:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:19:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:20:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:21:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:22:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:23:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:24:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:25:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:26:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:27:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:28:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:29:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:30:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:31:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:32:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:33:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:34:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:35:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:36:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:37:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:38:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:39:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:40:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:41:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:42:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:43:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:44:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:22 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:22 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:27 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:27 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:32 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:32 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:37 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:37 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:42 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:42 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:47 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:47 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:52 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:52 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:57 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:45:57 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:02 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:02 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:07 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:07 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:12 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:12 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:17 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:17 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:46:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:47:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:48:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:49:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:50:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:51:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:52:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:53:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:54:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:55:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:56:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:57:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:58:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 17:59:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:00:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:01:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:02:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:03:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:04:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:05:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:06:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:07:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:08:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:09:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:10:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:11:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:12:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:13:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:14:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:15:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:16:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:17:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:18:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:18 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:18 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:23 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:23 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:28 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:28 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:33 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:33 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:38 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:38 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:43 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:43 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:48 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:48 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:53 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:53 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:58 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:19:58 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:20:03 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:20:03 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:20:08 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:20:08 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:20:13 [error] 12962#0: *66 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088" +2017/06/19 18:20:13 [error] 12962#0: *75 lua tcp socket read timed out, client: 192.168.18.73, server: 127.0.0.1, request: "GET /lua_ws/ HTTP/1.1", host: "192.168.18.180:8088"